home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 8 / FM Towns Free Software Collection 8.iso / t_os / gpen32k / source / lib / osrc / boxbs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-01  |  155 b   |  11 lines

  1. /*
  2.     おこめ標準グラフィック関数
  3. */
  4.  
  5. #include    <NORMLIB.h>
  6.  
  7. void boxbs(int x, int y, int xs, int ys, int c)
  8. {
  9.     box(x, y, x+xs, y+ys, 0x02, c, 0);
  10. }
  11.